home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990422-19990725 / 000283_news@columbia.edu _Sun Jul 18 22:25:03 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id WAA12347
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 18 Jul 1999 22:25:01 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id WAA15040
  7.     for kermit.misc@watsun.cc.columbia.edu; Sun, 18 Jul 1999 22:12:59 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. Message-ID: <379288D1.6A692568@hastdeer.com.au>
  10. From: Rob Irvine <robi@hastdeer.com.au>
  11. Organization: Hastings Deering
  12. Subject: default file destination after a reconnection.
  13. Date: Mon, 19 Jul 1999 12:09:21 +1000
  14. To: kermit.misc@columbia.edu
  15.  
  16. We use kermit to send files from a Sun Sparc 7 Unix kermit (6.0.192)
  17. client to a Win95 Kermit 95 (1.1.17) server using the following 2
  18. scripts.  This all works just fine with the Server PC being in a
  19. warehouse.  My problem occurs if the PC is stopped for some reason and
  20. the Unix client initiates the following script while it is stopped.  It
  21. waits till the PC is brought up, but sends the first file to the default
  22. c:\k95 directory instead of c:\scar\host. I have tried putting the whole
  23. pathname\filename in the send line ,  but this doesn't make any
  24. difference. The second file is transmitted correctly.  As I have at
  25. least 2 applications using the server I cannot use a server-side default
  26. directory but need the file to go where I want it even if  there has
  27. been an interrupted transmission.
  28.  
  29. I have tried setting timeout to 0 but the client just goes to sleep and
  30. never awakes and there doesn't seem to be any option to set retry to
  31. forever (the limit is 999).
  32.  
  33. Do you have any suggestions on how I might be able to accomplish an
  34. interrupted send correctly ?
  35.  
  36. Thankyou in advance,  Rob Irvine
  37.  
  38. Unix script
  39.  
  40. set net tcp  ( bnestt is a terminal server on our lan, with the PC
  41. connected to port 15)
  42. set host bnestt 2015
  43. set command bytesize 8
  44. set terminal bytesize 8
  45. set parity none
  46. set duplex full
  47. fast
  48. set flow-control xon
  49. set handshake none
  50. set exit warning off
  51. remote cd c:/scar/host
  52. send /usr/hd/vca/hdkrdn2686 C649745.PK2
  53. if failure goto :noupload1
  54. remote cd c:/bcar/host
  55. send /usr/hd/vca/hdkrdn3686 C649745.DA2
  56. if failure goto :noupload2
  57. :quit
  58. quit
  59. :noupload1
  60. echo  ERROR NO UPLOAD 1
  61. goto :quit
  62. :noupload2
  63. echo  ERROR NO UPLOAD 2
  64. goto :quit
  65.  
  66.  
  67. Win95 script
  68.  
  69. ; FILE K95CUSTOM.INI -- Kermit 95 Customizations
  70. assign \%a com1
  71. set line \%a
  72. set speed 9600
  73. set parity none
  74. :ok
  75. set duplex full
  76. set carrier-watch off
  77. set handshake none
  78. set flow-control xon
  79. set terminal bytesize 8
  80. set file display serial
  81. set file collision overwrite
  82. enable delete
  83. fast
  84. log transactions
  85. show version
  86. show comm
  87. server
  88. End ; of K95CUSTOM.INI
  89.  
  90.